home *** CD-ROM | disk | FTP | other *** search
/ Shareware Extravaganza 7 / Shareware Extravaganza 8 (Most Significant Bits) (Disc 7).iso / win95b / readfile.zip / READFILE.TXT < prev    next >
Text File  |  1996-05-05  |  2KB  |  48 lines

  1. ReadFile 1.10 - http://ourworld.compuserve.com/homepages/gvollant/readfile.htm
  2.  
  3. This small freeware allow you test speed of memory copy and disk transfer speed
  4. under Windows 95 and Windows NT. This is a Win32 console apps.
  5.  
  6. Usage : READFILE                            test memcopy speed
  7.         READFILE filespec                   test file reading (bypass cache)
  8.         READFILE filespec /d                test file reading + copy mem
  9.         READFILE filespec /c                test file reading + compute CRC32
  10.         READFILE filespec /s                test file reading + rec. dir parse
  11.         READFILE filespec /l                test file reading + listing output
  12.  
  13. READFILE without parameters test the speed of copy big block of memory (1 MB)
  14.  
  15. READFILE with filespec parameter test speed of readfile file. Example :
  16. C:\> READFILE.EXE *.ima
  17. ReadFile 1.0 - http://ourworld.compuserve.com/homepages/gvollant/readfile.htm
  18. File=  3860 Kb/Sec with   1474560 bytes : Distwi25.ima
  19. File=  4084 Kb/Sec with   1474560 bytes : DISTWI22.IMA
  20. Average =   3850 Kb/Sec with   2949120 bytes (total : 765 msec)
  21.  
  22. The file are opened with FILE_FLAG_NO_BUFFERING parameters, so it will not
  23. copy the file in the cache.
  24.  
  25. I suggest you test it on big (more than 1 MB), unfraggmented file for testing
  26. the real transfer speed of your hard disk (or network unit) in sequential read.
  27.  
  28. Under Windows NT, it's VERY useful start performance monitor before use READFILE:
  29. - Start PERFMON.EXE
  30. - Add CPU in the chart
  31.  
  32. With a modern SCSI BusMaster interface (By example, Adaptec 2940), you'll have
  33. very small CPU usage while reading (10 % of CPU for 4 MB/Sec), with a normal
  34. IDE Interface, you'll have 100 % of CPU used by the disk operation !
  35.  
  36. I've heard that for latest Pentium motherboard with Intel triton chipset, it exist
  37. a BusMaster IDE driver (ftp://ftp.winsite.com/pub/pc/winnt/drivers/other/triton.zip).
  38. Somes more up-to-date drivers can be found at http://web2.airmail.net/ksm/software.htm
  39.  
  40. I've no IDE disk actually, if you have chance test it, email me !
  41.  
  42. Another usage of ReadFile is produce a listing of file with CRC (can be useful for
  43. checking integrity). You can go to a directory and enter :
  44. READFILE *.* /c /s /l > LISTCRC.TXT to produce a file with CRC
  45.  
  46. Gilles Vollant
  47. 100144.2636@compuserve.com
  48.